-- XSD schema extracted from ITU-T H.627 (08/2020)
<?xml version="1.0" encoding="utf-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema">
<choice maxOccurs="unbounded">
<element name="Response">
<complexType>
<sequence>
<!-- The query request response message is shown as follows.-->
<!-- Command type: cruise track list query (required) -->
<element name="CmdType" fixed="CruiseTrackListQuery"/>
<!-- Command serial number (required) -->
<element name="SN" type="integer" minInclusive="1"/>
<!-- Target device code (required) -->
<element name="DeviceID" type="deviceIDType"/>
<!--Total number of results (required) -->
<element name="SumNum" type="integer"/>
<!-- Cruise track information (optional) -->
<element name="CruiseTrackList" minOccurs="0">
<complexType>
<!-- The number of track items, when the cruise track is not configured, the value is 0 (required) -->
<attribute name="Num" type="integer"/>
<choice minOccurs="0" maxOccurs="unbounded">
<!-- Track information -->
<element name="CruiseTrack">
<complexType>
<sequence>
<!-- Track number (required), 0 - first track, 1 - second track-->
<element name="Number" type="integer"/>
<!-- Track name (optional), up to 32 bytes -->
<element name="Name" type="integer" minOccurs="0"/>
</sequence>
</complexType>
</element>
</choice>
</complexType>
</element>
</sequence>
</complexType>
</element>
</choice>
</schema>